This program reads data for two people and computes their body mass index (BMI). --------------------------------- Enter next person's information: height (in inches)? 70.0 weight (in pounds)? 194.25 Enter next person's information: height (in inches)? 70.001 weight (in pounds)? 194.25 Person 1 BMI = 27.87 overweight Person 2 BMI = 27.87 overweight The BMI values are the same. Enter another set? (Y/N) yes --------------------------------- Enter next person's information: height (in inches)? 70.0 weight (in pounds)? 194.25 Enter next person's information: height (in inches)? 70.1 weight (in pounds)? 194.25 Person 1 BMI = 27.87 overweight Person 2 BMI = 27.79 overweight Person 1 BMI value is higher. Enter another set? (Y/N) Yup --------------------------------- Enter next person's information: height (in inches)? 70.0 weight (in pounds)? 194.25 Enter next person's information: height (in inches)? 69.9 weight (in pounds)? 194.25 Person 1 BMI = 27.87 overweight Person 2 BMI = 27.95 overweight Person 2 BMI value is higher. Enter another set? (Y/N) no Thank you.